home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Headers / ansi / i386 / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-24  |  285 b   |  14 lines

  1. #ifndef _ANSI_I386_SETJMP_H
  2. #define _ANSI_I386_SETJMP_H
  3.  
  4. #import <bsd/i386/signal.h>
  5.  
  6. typedef struct sigcontext jmp_buf[1];
  7.  
  8. #ifndef __STRICT_BSD__
  9. extern int setjmp(jmp_buf env);
  10. extern void longjmp(jmp_buf env, int val);
  11. #endif /* __STRICT_BSD__ */
  12.  
  13. #endif /* _ANSI_I386_SETJMP_H */
  14.